197b8ea666a7133e3023f2246fc6c36de0239f4e,controls/src/main/java/org/tweetwallfx/controls/WordleSkin.java,WordleSkin,cloudToTweet,#,188
Before Change
faiReTwCount.getStyleClass().setAll("retweetCount");
Label favCount = new Label(String.valueOf(tweetInfo.getFavoriteCount()));
favCount.getStyleClass().setAll("handle");
Label reTwCount = new Label(String.valueOf(tweetInfo.getRetweetCount()));
reTwCount.getStyleClass().setAll("handle");
After Change
reTwCount.getStyleClass().setAll("handle");
hbox.getChildren().addAll(faiReTwCount, reTwCount);
}
if (0 < tweetInfo.getFavoriteCount()) {
FontAwesomeIcon faiFavCount = new FontAwesomeIcon();
faiFavCount.getStyleClass().setAll("favoriteCount");
Label favCount = new Label(String.valueOf(tweetInfo.getFavoriteCount()));
favCount.getStyleClass().setAll("handle");
hbox.getChildren().addAll(faiFavCount, favCount);
}
}